-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 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
75
76
77
78
79
{
"name": "tartak",
"author": {
"name": "Mieszko Sabo",
"url": "https://mieszko.sh"
},
"version": "0.3.1",
"main": "./dist/index.cjs",
"module": "./dist/cli/index.mjs",
"types": "./dist/cli/index.d.ts",
"sideEffects": false,
"license": "MIT",
"bin": "./dist/cli/index.js",
"files": [
"dist/**"
],
"typesVersions": {
"*": {
"index": [
"dist/cli/index.d.ts"
],
"prelude": [
"dist/prelude/index.d.ts"
],
"hot": [
"dist/hot/index.d.ts"
],
"math": [
"dist/math/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/cli/index.d.ts",
"import": "./dist/cli/index.mjs",
"require": "./dist/cli/index.js",
"node": "./dist/cli/index.js"
},
"./prelude": {
"types": "./dist/prelude/index.d.ts",
"import": "./dist/prelude/index.mjs",
"require": "./dist/prelude/index.js",
"node": "./dist/prelude/index.js"
},
"./hot": {
"types": "./dist/hot/index.d.ts",
"import": "./dist/hot/index.mjs",
"require": "./dist/hot/index.js",
"node": "./dist/hot/index.js"
},
"./math": {
"types": "./dist/math/index.d.ts",
"import": "./dist/math/index.mjs",
"require": "./dist/math/index.js",
"node": "./dist/math/index.js"
}
},
"scripts": {
"test:e2e": "bun . && tsc -p tsconfig.test.json",
"build": "tsup --entry src/cli/index.ts --entry src/prelude/index.ts --entry src/hot/index.ts --entry src/math/index.ts --format esm,cjs --dts --minify"
},
"devDependencies": {
"@types/bun": "1.1.0",
"tsup": "^8.2.3",
"vitest": "^1.4.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"hotscript": "^1.0.13",
"ts-arithmetic": "^0.1.1",
"ts-pattern": "^5.1.1",
"type-fest": "^4.15.0"
}
}