-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "@aoijs/aoi.structures",
"maintainers": [
"USERSATOSHI"
],
"version": "1.0.0",
"repository": {
"type": "github",
"url": "https://github.com/aoijs/aoi.structures"
},
"readme": "./README.md",
"bugs": {
"url": "https://github.com/aoijs/aoi.structures/issues"
},
"description": "Abstract Data Structures That Make Storing data Much easy.",
"license": "MIT",
"devDependencies": {
"typedoc": "^0.25.11",
"typescript": "^5.4.2"
},
"main": "./dist/cjs/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"test": "node tests",
"start": "node index.js",
"build": " npx tsc -p tsconfig.esm.json && npx tsc -p tsconfig.cjs.json && npm run createpack",
"createpack": "node packers/pack.js",
"addpkg": "node packers/addpkgjson.js",
"bundleTsFiles": "node packers/bundle.js",
"lint": "eslint . --ext .ts --fix --ext .js",
"docs": "typedoc"
},
"type": "commonjs",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
]
}