-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "@gera2ld/tarjs",
"version": "0.3.1",
"description": "",
"author": "Gerald <[email protected]>",
"license": "MIT",
"repository": "[email protected]:gera2ld/tarjs.git",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"ci": "run-s lint test",
"lint": "eslint .",
"dev": "rollup -wc",
"clean": "del-cli dist types",
"format": "prettier --ignore-path .eslintignore --write .",
"build:js": "cross-env NODE_ENV=production rollup -c",
"build": "run-s ci clean build:types build:js",
"prepare": "husky install",
"prepublishOnly": "run-s build",
"build:types": "tsc -p tsconfig.prod.json",
"test": "jest"
},
"type": "module",
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"files": [
"dist",
"types"
],
"typings": "types/index.d.ts",
"dependencies": {
"@babel/runtime": "^7.23.2"
},
"devDependencies": {
"@gera2ld/plaid": "~2.6.0",
"@gera2ld/plaid-rollup": "~2.6.0",
"@gera2ld/plaid-test": "~2.6.0",
"@types/jest": "^29.5.6",
"del-cli": "^5.1.0",
"husky": "^8.0.3"
}
}