generated from JackalLabs/template_vite_module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"name": "@jackallabs/dogwood-tree",
"version": "1.0.1",
"description": "Jackal Labs JS Merkletree implementation",
"keywords": [
"merkletree"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.es.js"
}
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"packit": "npm run build && npm pack --pack-destination packs",
"gen-docs": "npx typedoc"
},
"contributors": [
{
"name": "Jackal Labs",
"email": "[email protected]",
"url": "https://jackallabs.io"
},
{
"name": "Erin Rivas",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JackalLabs/dogwood-tree.git"
},
"bugs": {
"url": "https://github.com/JackalLabs/dogwood-tree/issues"
},
"homepage": "https://github.com/JackalLabs/dogwood-tree/#README",
"dependencies": {
"js-sha3": "^0.9.2"
},
"devDependencies": {
"@btmills/prettier": "3.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitest/coverage-v8": "0.34.6",
"eslint": "^8.53.0",
"eslint-config-prettier": "9.0.0",
"rollup-plugin-typescript-paths": "^1.4.0",
"tslib": "^2.6.2",
"typedoc": "^0.25.3",
"typescript": "^5.2.2",
"vite": "5.0.5",
"vite-plugin-dts": "^3.6.3",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "0.34.6"
}
}