-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 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
{
"name": "@uor-foundation/sigmatics-workspace",
"version": "0.2.0",
"private": true,
"description": "Sigmatics workspace - Atlas Sigil Algebra reference implementation",
"author": "UOR Foundation <info@uor.foundation> (https://uor.foundation)",
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*",
"examples",
"tools/*"
],
"scripts": {
"build": "npm run build -w packages/core",
"build:core": "npm run build -w packages/core",
"build:web": "npm run build -w apps/playground-web",
"build:all": "npm run build --workspaces --if-present",
"test": "npm test -w packages/core",
"dev:web": "npm run dev -w apps/playground-web",
"dev:cli": "npm run dev -w apps/playground-cli",
"example": "npm run start -w examples",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"clean": "rm -rf packages/*/dist apps/*/dist node_modules packages/*/node_modules apps/*/node_modules"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18",
"npm": ">=9"
}
}