-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "@big-whale-labs/poseidon",
"version": "0.0.5",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BigWhaleLabs/poseidon"
},
"type": "module",
"types": "types.d.ts",
"main": "./dist/poseidon.cjs",
"module": "./src/poseidon.js",
"files": [
"dist",
"src",
"types.d.ts"
],
"exports": {
"import": "./src/poseidon.js",
"require": "./dist/poseidon.cjs"
},
"np": {
"2fa": false,
"tests": false,
"cleanup": false,
"yarn": false,
"access": "restricted"
},
"scripts": {
"release": "np",
"build": "rollup -c rollup.cjs.config.js",
"prepublishOnly": "yarn build",
"lint": "echo 'No linter set'"
},
"dependencies": {
"big-integer": "^1.6.51"
},
"devDependencies": {
"@rollup/plugin-json": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"np": "^7.6.2",
"prettier": "^2.8.0",
"rollup": "^3.5.0"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "[email protected]"
}