-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "atscript",
"version": "0.1.50",
"description": "Atscript is a language for describing data and interfaces with extensible annotations, enabling the generation of files at runtime for streamlined workflows.",
"keywords": [],
"license": "MIT",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "oxlint",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"build": "node ./scripts/build.js",
"build-only": "node ./scripts/build.js",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "pnpm changelog && git add CHANGELOG.md && git commit -m 'chore: update changelog'",
"release": "pnpm build && pnpm test && node ./scripts/versions && pnpm -r run pub",
"vscode": "node ./scripts/vscode-publish",
"sync": "node ./scripts/versions"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@prostojs/dye": "^0.4.9",
"@types/node": "^22.19.11",
"@vscode/vsce": "^3.7.1",
"conventional-changelog-cli": "^5.0.0",
"husky": "^9.1.7",
"inquirer": "^12.11.1",
"oxfmt": "^0.34.0",
"oxlint": "^1.49.0",
"rolldown": "1.0.0-beta.1",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.3.0",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.9",
"vitepress": "^1.6.4",
"vitest": "3.2.4",
"zx": "^8.8.5"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"minimatch": ">=10.2.3",
"@vscode/vsce>minimatch": "^3.0.3"
},
"onlyBuiltDependencies": [
"better-sqlite3"
]
}
}