forked from peerigon/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@peerigon/template-public-package",
"version": "0.0.0-semantically-released",
"description": "Boilerplate template to kick start new public packages at Peerigon",
"keywords": [],
"homepage": "https://github.com/peerigon/template-public-package#readme",
"bugs": {
"url": "https://github.com/peerigon/template-public-package/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerigon/template-public-package.git"
},
"license": "MIT",
"author": "Peerigon GmbH <hello@peerigon.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/main.js",
"./add": "./dist/add.js"
},
"main": "./dist/main.js",
"files": [
"dist",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"prepare": "husky",
"test": "run-p test:*",
"test:format": "prettier --check .",
"test:lint": "eslint --max-warnings 0 --cache .",
"test:types": "tsc",
"test:unit": "vitest --run",
"test:jsr": "jsr publish --dry-run --allow-dirty",
"vitest": "vitest",
"build": "run-s build:*",
"build:clear": "rimraf dist",
"build:tsc": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"release": "semantic-release"
},
"dependencies": {
"env-var": "^7.5.0"
},
"devDependencies": {
"@peerigon/configs": "^15.3.0",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jsr": "^0.14.3",
"lint-staged": "^16.4.0",
"npm-run-all2": "^8.0.4",
"pin-github-action": "^3.4.0",
"prettier": "^3.8.1",
"rimraf": "^6.0.1",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"typescript-language-server": "^5.1.3",
"vitest": "^4.1.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}