-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.12 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@kwilteam/kwil-js",
"version": "0.8.4",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.ts",
"!dist/**/*.map",
"!dist/**/*.test.js",
"!dist/**/*.test.ts",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && tsc",
"commit": "git add . && git-cz",
"prepare": "husky install",
"release": "standard-version",
"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",
"integration": "npx jest ./tests/kwil"
},
"author": "Kwil, Inc. <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.5.13",
"@types/node": "^18.11.17",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"commitizen": "^4.3.0",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"near-api-js": "^2.1.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"scrypt-js": "^3.0.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tweetnacl": "^1.0.3",
"typescript": "^4.9.4",
"uuid": "^9.0.1"
},
"dependencies": {
"axios": "^0.27.2",
"ethers": "^6.9.1",
"jssha": "^3.2.0",
"long": "^5.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}
}