-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 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
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
{
"name": "@gander-tools/nms-lib",
"description": "NMS Calc Library",
"type": "commonjs",
"version": "0.0.0",
"keywords": [
"nomanssky",
"No Man's Sky",
"calculator"
],
"engines": {
"node": ">=18"
},
"author": "Adam Gąsowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/gander-tools/nms-lib/issues"
},
"homepage": "https://github.com/gander-tools/nms-lib",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:package": "publint --pack auto",
"prepare": "pkgroll --clean-dist --sourcemap --minify",
"release": "release-it --only-version",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:run": "vitest run",
"test:types": "tsc --noEmit",
"test:watch": "vitest watch"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@release-it/bumper": "^7.0.0",
"@types/bun": "^1.1.16",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "^2.1.8",
"@vue/reactivity": "^3.5.13",
"eslint": "^9.18.0",
"pkgroll": "^2.6.1",
"publint": "^0.3.1",
"release-it": "^18.1.1",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@vue/reactivity": "^3.0.0"
}
}