-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "variant-ts",
"version": "0.0.29",
"description": "Variant, Option and Result types for Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"serve": "node dist/index.js",
"build": "rollup --config",
"test": "web-test-runner \"test/**/*.test.js\" \"src/**/*.test.js\" --node-resolve"
},
"keywords": [
"variant",
"enum",
"result",
"option"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JanKaul/variant-ts.git"
},
"author": "Jan Kaul",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JanKaul/variant-ts/issues"
},
"homepage": "https://github.com/JanKaul/variant-ts#readme",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.1.2",
"@web/test-runner": "^0.17.0",
"rollup": "^3.28.1",
"tslib": "^2.6.2",
"typescript": "^5.1.6"
}
}