-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dsabp-js",
"version": "0.4.10",
"description": "DSA (drednot.io) Blueprint implementation and API for Node.js and the browser, in TypeScript.",
"homepage": "https://github.com/Blueyescat/dsabp-js",
"bugs": "https://github.com/Blueyescat/dsabp-js/issues",
"author": "Blueyescat <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/node/cjs/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"browser": "./dist/browser/esm/index.js",
"default": "./dist/node/cjs/index.cjs"
},
"./dev": "./dist/tsc/index.js"
},
"typesVersions": {
"*": {
"dev": [
"./dist/tsc/index.d.ts"
],
"*": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist/",
"!dist/tsc/"
],
"scripts": {
"start": "tsc -w",
"build:dev": "tsc",
"build": "node --no-warnings build.js",
"docs": "typedoc --options ./.typedoc/config.json"
},
"devDependencies": {
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"fflate": "^0.8.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"keywords": [
"Deep Space Airships",
"Blueprint",
"drednot.io",
"DSA",
"Dredark",
"node",
"browser"
]
}