-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "zap-lib-js",
"version": "0.4.1",
"description": "A cross-platform library for multi-device applications",
"type": "module",
"engines": {
"node": ">=16.8"
},
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:cjs && tsc -p tsconfig.build.json",
"build:esm": "esbuild src/index.ts --outfile=build/index.mjs --platform=node --target=es2020 --bundle --minify --format=esm",
"build:cjs": "esbuild src/index.ts --outfile=build/index.cjs --platform=node --target=es2020 --bundle --minify --format=cjs",
"lint": "eslint --ignore-path=.gitignore --ext=.ts .",
"lint:type": "tsc",
"doc": "typedoc src/index.ts",
"clean": "mkdir -p build && rm -rf build/*"
},
"exports": {
".": {
"import": "./build/index.mjs",
"require": "./build/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zap-lib/node.git"
},
"author": "parksb <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zap-lib/node/issues"
},
"homepage": "https://github.com/zap-lib/node#readme",
"devDependencies": {
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@types/uuid": "^9.0.6",
"esbuild": "^0.19.4",
"eslint": "^8.53.0",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"dependencies": {
"uuid": "^9.0.1"
}
}