generated from wopjs/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.61 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
{
"name": "@wopjs/cast",
"version": "0.1.2",
"description": "Filter types from unknown",
"repository": "wopjs/cast",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"src",
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint && prettier --check .",
"docs": "typedoc --options typedoc.json",
"test": "vitest",
"test:coverage": "vitest --coverage --coverage.include=src/**",
"test:ci": "tsc --noEmit && vitest --coverage --coverage.reporter=lcov --coverage.include=src/**",
"build": "tsup",
"build:min": "MINIFY=true tsup && node scripts/gzip.mjs",
"release": "commit-and-tag-version"
},
"keywords": [
"typescript",
"coerce"
],
"maintainers": [
{
"name": "CRIMX",
"email": "straybugs@gmail.com",
"url": "https://github.com/crimx/"
},
{
"name": "hyrious",
"email": "hyrious@outlook.com",
"url": "https://github.com/hyrious/"
}
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.5",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"gzip-size": "^7.0.0",
"prettier": "^3.3.3",
"pretty-bytes": "^6.1.1",
"tsup": "^8.3.5",
"typedoc": "^0.27.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5",
"yoctocolors": "^2.1.1"
}
}