-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "zen-flow",
"version": "17.1.1",
"description": "MineTweaker ZenScript made easy.",
"type": "module",
"exports": {
".": "./dist/zenflow.js"
},
"keywords": [
"minetweaker",
"minecraft",
"feed the beast",
"modded",
"zenscript"
],
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chronoDave/zen-flow.git"
},
"author": "Chronocide",
"license": "MIT",
"engines": {
"node": ">=22.13.1"
},
"scripts": {
"lint": "eslint src",
"lint:types": "tsc --noEmit",
"lint:fix": "eslint src --fix",
"build": "rollup -c",
"docs": "typedoc src/index.ts",
"test": "node --experimental-strip-types --test src/**/*.spec.ts --test-reporter=tap",
"preversion": "npm run lint:types && npm run lint && npm run test && npm run build && npm run docs",
"postversion": "git add -A && git commit -m \"Updated docs\""
},
"optionalDependencies": {
"@chronocide/eslint-config": "^0.7.11",
"eslint": "^9.9.0"
},
"devDependencies": {
"@types/node": "^22.14.1",
"esbuild": "^0.25.0",
"rollup": "^4.21.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"typedoc": "^0.27.5",
"typescript": "^5.5.4"
}
}