-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.74 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
{
"name": "ic10",
"type": "module",
"version": "4.3.1",
"description": "ic10 interpreter",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./zodTypes": {
"import": "./dist/esm/ZodTypes.js",
"require": "./dist/cjs/ZodTypes.js"
}
},
"engines": {
"bun": ">=1.0.20",
"node": ">=20.10.0"
},
"scripts": {
"prepack": "npm run build",
"postpublish": "npm version patch",
"watch": "tsc -w",
"build:node": "bun build ./src/index.ts --outdir ./build --target node --minify",
"build:bun": "bun build ./src/index.ts --outdir ./build --target bun --minify",
"build:browser": "bun build ./src/index.ts --outdir ./build --minify",
"build": "tsc --project tsconfig.json && tsc --project tsconfig.cjs.json && bun ./tools/build.ts",
"test": "bun test",
"nodemon": "nodemon src/tests/dev.ts",
"devTest": "bun tests/dev.ts"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Stationeers-ic/ic10.git"
},
"keywords": [],
"author": "",
"license": "CC BY-NC 4.0",
"bugs": {
"url": "https://github.com/Stationeers-ic/ic10/issues"
},
"exclude": [
".idea",
".vscode",
".project-manager",
".ic10"
],
"homepage": "https://github.com/Stationeers-ic/ic10#readme",
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/bun": "^1.1.1",
"@types/uuid": "^9.0.8",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"dependencies": {
"crc-32": "^1.2.2",
"eventemitter3": "^5.0.1",
"uuid": "^10.0.0",
"zod": "^3.23.8"
}
}