-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.93 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@hagicode/hagiscript",
"version": "0.1.0",
"description": "Scoped npm package foundation for Hagiscript language tooling.",
"license": "MIT",
"homepage": "https://github.com/HagiCode-org/hagiscript#readme",
"bugs": {
"url": "https://github.com/HagiCode-org/hagiscript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HagiCode-org/hagiscript.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"hagiscript": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"README_cn.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist .vitest-temp .tmp coverage",
"dev": "tsx src/cli.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"integration:installed-runtime": "node scripts/integration-installed-runtime.mjs",
"pack:check": "node scripts/verify-package.mjs",
"publish:check-prereqs": "node scripts/verify-npm-publish-prereqs.mjs",
"publish:prepare-dev-version": "node scripts/prepare-dev-version.mjs",
"publish:verify-release": "node scripts/verify-release-version.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"hagiscript",
"scripting",
"language",
"cli"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"commander": "^14.0.1",
"execa": "^9.6.1",
"semver": "^7.7.4"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^24.5.2",
"@types/semver": "^7.7.1",
"eslint": "^9.38.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^3.2.4"
}
}