-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "@wopjs/template",
"version": "0.1.0",
"description": "Collection of common utilities.",
"repository": "wopjs/template",
"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 .",
"lint:fix": "eslint --fix && prettier --write .",
"ts-check": "tsc --noEmit",
"ts-watch": "tsc --noEmit -w",
"docs": "typedoc --options typedoc.json && prettier --ignore-path .prettierignore --write docs",
"test": "vitest",
"test:coverage": "vitest --coverage --coverage.include=src/**",
"test:ci": "vitest --coverage --coverage.reporter=lcov --coverage.include=src/**",
"build": "tsup",
"build:min": "MINIFY=true tsup && echo '' && gzip-size dist/index.mjs dist/index.js",
"release": "commit-and-tag-version"
},
"keywords": [
"template"
],
"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": {
"@vitest/coverage-v8": "^3.0.2",
"@wopjs/eslint-config": "^0.1.4",
"@wopjs/gzip-size": "^0.1.0",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"vitest": "^3.0.2"
}
}