-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "pheno",
"version": "0.12.0",
"description": "Simple, lightweight at-runtime type checking functions, with full TypeScript support",
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"browser": "dist/bundle.min.js",
"scripts": {
"build:ts": "tsc",
"build:kame": "kame bundle --output ./dist/bundle.js --loader ./kame-loader.js",
"build:minify": "terser ./dist/bundle.js -m eval=true -c > ./dist/bundle.min.js",
"build": "rm -rf dist && npm run build:ts && npm run build:kame && npm run build:minify",
"build:watch": "chokidar 'src/**/*' 'kame-loader.js' -c 'npm run build && echo Done' --initial",
"test": "vitest"
},
"keywords": [
"type",
"check",
"runtime",
"validate",
"test",
"assert",
"typescript",
"is",
"asserts"
],
"author": "Lily Skye <me@suchipi.com>",
"license": "MIT",
"devDependencies": {
"chokidar-cli": "^3.0.0",
"kame": "^0.12.0",
"prettier": "^3.2.4",
"terser": "^5.27.0",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suchipi/pheno.git"
}
}