-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 KB
/
package.json
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
{
"name": "lionweb-typescript",
"version": "0.7.0-dev",
"description": "LionWeb core for {Java|Type}Script",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
},
"bugs": {
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
},
"devDependencies": {
"@types/node": "20.11.25",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"prettier": "3.2.5",
"typescript": "5.3.3"
},
"scripts": {
"initialize": "npm run clean && npm install && npm run setup && npm run build",
"clean": "rm -rf node_modules/ && npm run clean -w packages --if-present",
"build": "npm run build -w packages --if-present",
"lint": "npm run lint -w packages --if-present",
"setup": "npm run setup -w packages --if-present",
"test": "npm run test -w packages --if-present",
"prerelease": "npm run initialize",
"release": "npm run release -w packages --if-present",
"release-beta": "npm run release-beta -w packages --if-present"
},
"private": true,
"workspaces": [
"./packages/core",
"./packages/utilities",
"./packages/validation",
"./packages/cli",
"./packages/test",
"./packages/artifacts"
]
}