-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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": "ts-expression",
"version": "1.2.2",
"license": "MIT",
"author": "Roman Hnatiuk <hnatiukr@pm.me>",
"description": "Constructor of TypeScript symbolic expressions.",
"keywords": [
"sexp",
"typescript",
"symbolic-expression",
"functional-programming"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hnatiukr/ts-expression.git"
},
"bugs": {
"url": "https://github.com/hnatiukr/ts-expression/issues"
},
"homepage": "https://github.com/hnatiukr/ts-expression#readme",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"sideEffects": false,
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
"@changesets/cli": "2.27.7",
"documentation": "14.0.3",
"prettier": "3.3.3",
"vitest": "2.0.5"
},
"peerDependencies": {
"typescript": ">=5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.21.2"
}
}