-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "binary-indexed-tree",
"type": "module",
"version": "0.5.0",
"description": "Binary Indexed Tree(aka Fenwick Tree) implementation",
"main": "lib/bit.umd.cjs",
"module": "lib/bit.js",
"types": "lib/bit.d.ts",
"exports": {
".": {
"import": "./lib/bit.js",
"require": "./lib/bit.umd.cjs"
}
},
"scripts": {
"test": "vitest",
"dev": "vite",
"build": "yarn run build:vite && yarn run build:tsc",
"build:vite": "vite build",
"build:tsc": "tsc --project tsconfig.emit.json",
"type-check": "tsc --noEmit",
"prepublishOnly": "yarn run update-docs:commit && yarn run build",
"update-docs:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"update-docs:readme": "documentation readme --access 'undefined' --section \"API\" src/bit.ts",
"update-docs:commit": "ts-node-esm --project ./scripts/tsconfig.json ./scripts/update-docs-with-commit.mts"
},
"files": [
"lib/"
],
"author": "berlysia",
"license": "MIT",
"devDependencies": {
"conventional-changelog-cli": "^2.2.2",
"documentation": "^14.0.0",
"random-js": "2.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vite": "^3.2.1",
"vitest": "^0.34.0",
"zx": "^7.1.1"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/berlysia/binary-indexed-tree-js.git"
},
"bugs": {
"url": "https://github.com/berlysia/binary-indexed-tree-js/issues"
},
"homepage": "https://github.com/berlysia/binary-indexed-tree-js#readme"
}