This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.89 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
{
"name": "@block65/biruda",
"version": "17.2.0",
"license": "UNLICENSED",
"sideEffects": false,
"type": "module",
"exports": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"bin": {
"biruda": "dist/bin/biruda.js"
},
"files": [
"/dist/**/*.js",
"/dist/**/*.d.ts",
"/LICENSE.md"
],
"scripts": {
"build": "tsc",
"build:watch": "yarn build -w",
"clean": "rimraf dist tnmp",
"distclean": "yarn clean; yarn rimraf node_modules",
"prepare": "yarn clean && yarn build && chmod +x dist/bin/*.js",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" ava"
},
"dependencies": {
"@block65/logger": "^12.1.0",
"@vercel/nft": "^0.22.5",
"archiver": "^5.3.1",
"esbuild": "^0.16.4",
"find-up": "^6.3.0",
"glob": "^8.0.3",
"glob-promise": "^5.0.0",
"mem": "^9.0.2",
"micromatch": "^4.0.5",
"p-memoize": "^7.1.1",
"pkg-dir": "^7.0.0",
"pkg-up": "^4.0.0",
"read-pkg": "^7.1.0",
"rimraf": "^3.0.2",
"tmp-promise": "^3.0.3",
"trace-deps": "^0.5.1",
"yargs": "^17.6.2"
},
"peerDependencies": {
"typescript": ">=4.8"
},
"devDependencies": {
"@block65/eslint-config": "^8.0.0",
"@jest/globals": "^29.3.1",
"@types/archiver": "^5.3.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.4",
"@types/micromatch": "^4.0.2",
"@types/node": "^18.11.13",
"@types/supports-color": "^8.1.1",
"@types/tmp": "^0.2.3",
"@types/yargs": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"ava": "^5.1.0",
"eslint": "^8.29.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"type-fest": "^3.3.0",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=12.20"
}
}