-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "ograf-validator-monorepo",
"private": true,
"version": "0.0.0",
"description": "OGraf Validator – browser-based validation, inspection and sandboxed preview for OGraf Graphics Packages",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=packages/app",
"build": "npm run build:core && npm run build:app",
"build:core": "npm run build --workspace=packages/validator-core",
"build:app": "npm run build --workspace=packages/app",
"test": "npm run build:core && npm run test:release-tags && npm run test:workspaces",
"test:workspaces": "npm run test --workspaces --if-present",
"test:release-tags": "node --test scripts/check-release-tag.test.mjs",
"test:core": "npm run test --workspace=packages/validator-core",
"test:e2e": "npm run test:e2e --workspace=packages/app",
"smoke:core": "npm run build:core && node scripts/core-package-smoke.mjs",
"smoke:toolchain": "node scripts/toolchain-smoke.mjs",
"spec:check": "npm run spec:check --workspace=packages/validator-core",
"audit": "npm audit --audit-level=low",
"audit:prod": "npm audit --omit=dev --audit-level=low",
"release:check": "npm run smoke:toolchain && npm run test:release-tags && npm run lint && npm run build:core && npm run typecheck:workspaces && npm run test:workspaces && npm run spec:check && npm run build:app && npm run smoke:core && npm run test:e2e && npm run audit:prod && npm run audit",
"lint": "eslint packages scripts",
"typecheck": "npm run build:core && npm run typecheck:workspaces",
"typecheck:workspaces": "npm run typecheck --workspaces --if-present"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Streamshapers/OGraf-Validator.git"
},
"homepage": "https://validator.streamshapers.com",
"bugs": {
"url": "https://github.com/Streamshapers/OGraf-Validator/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.29.7",
"@eslint/js": "^10.0.1",
"@typescript/native": "npm:typescript@^7.0.2",
"eslint": "^10.10.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.6",
"globals": "^17.12.0",
"postcss": "8.5.28",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.70.0"
},
"overrides": {
"@babel/core": "$@babel/core",
"postcss": "$postcss"
}
}