-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "root",
"private": true,
"workspaces": ["packages/*"],
"repository": {
"type": "git",
"url": "https://github.com/flying-dice/tslua-dcs.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"publish": "npm run build && lerna publish --conventional-commits --yes",
"format": "biome check --write .",
"format:ci": "biome ci .",
"export": "lerna run export",
"build": "lerna run build",
"build:docs": "lerna run build:docs && typedoc",
"build:all": "npm run format && npm run build && npm run build:docs",
"pretest": "npm run build",
"test": "lerna run test",
"test:lua": "lerna run test:lua",
"posttest": "npm run build:docs && npm run format"
},
"dependencies": {
"lua-types": "^2.13.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"concurrently": "^9.1.0",
"lerna": "^8.1.9",
"nodemon": "^3.1.7",
"npm-check-updates": "^17.1.11",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typedoc": "^0.27.3",
"vitest": "^2.1.8"
}
}