-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"name": "acrop",
"description": "",
"version": "0.0.11",
"author": "Crescware Inc.",
"bin": {
"acrop": "./dist/index.mjs"
},
"bugs": {
"url": "https://github.com/crescware/acrop/issues"
},
"dependencies": {
"@babel/core": "~7.25.2",
"@babel/preset-typescript": "~7.24.7",
"detect-newline": "~4.0.1",
"ignore": "~5.3.2",
"minimatch": "~10.0.1",
"oxc-parser": "~0.24.3",
"table": "~6.8.2",
"time-span": "~5.1.0",
"valibot": "~0.37.0",
"yoctocolors": "~2.1.1"
},
"devDependencies": {
"@types/babel__core": "~7.20.5",
"@types/node": "~20.16.1",
"prettier": "~3.3.3",
"tsup": "8.2.4",
"tsx": "~4.17.0",
"typescript": "5.5.4",
"vitest": "~2.0.5"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"files": [
"dist",
"src",
"package.json",
"README.md"
],
"homepage": "https://github.com/crescware/acrop#readme",
"keywords": [],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/crescware/acrop.git"
},
"scripts": {
"build": "npm run check -- run && tsup ./index.ts --format esm && echo '#!/usr/bin/env node' | cat - dist/index.js > dist/index.mjs && rm dist/index.js",
"check": "npm run check:type && npm run test",
"check:type": "tsc -p ./tsconfig.json --noEmit",
"start": "tsx ./index.ts",
"test": "vitest"
},
"type": "module"
}