forked from kwilteam/kwil-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "kwil",
"version": "3.2.0",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.ts",
"!dist/**/*.map",
"!dist/**/*.test.js",
"!dist/**/*.test.ts"
],
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && tsc",
"pack_build": "npm run clean && tsc --outDir ./dist --sourceMap false --declarationDir ./dist",
"pack_pre": "copyfiles package.json README.md dist && rimraf ./kwil*.tgz",
"pack_post": "copyfiles ./kwil*.tgz ./pkg && rimraf ./kwil*.tgz",
"pack": "npm run pack_build && npm run pack_pre && npm --prefix ./dist pack && npm run pack_post"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"copyfiles": "^2.4.1",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jsdom": "^22.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/uuid": "^8.3.4",
"axios": "^0.27.2",
"dotenv": "^16.0.3",
"ethers": "^6.3.0",
"ethers5": "npm:ethers@^5.7.2",
"jssha": "^3.2.0",
"long": "^5.2.1",
"node-fetch": "^3.3.0",
"protobufjs": "^7.1.2"
},
"engines": {
"node": ">=18.0.0"
}
}