-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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": "@kanwren/minewt",
"version": "1.1.1",
"description": "Minimal newtypes for TypeScript",
"type": "module",
"main": "dist/minewt.cjs",
"module": "dist/minewt.es.js",
"types": "dist/types/minewt.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist/ *.tgz",
"compile": "npx tsc",
"rollup": "npx rollup -c rollup.config.js",
"build": "npm run clean && npm run compile && npm run rollup",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"rollup": "^3.20.2",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kanwren/minewt.git"
},
"author": "Nicole Wren <nicole@wren.systems>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kanwren/minewt/issues"
},
"homepage": "https://github.com/kanwren/minewt#readme",
"keywords": [
"typescript",
"newtype",
"newtype-ts",
"type-safe",
"functional-programming"
]
}