-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 927 Bytes
/
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
{
"name": "@author/package",
"version": "0.0.0",
"description": "{{desc}}",
"license": "MIT",
"author": {
"name": "{{author}}",
"url": "https://github.com/{{username}}"
},
"keywords": [
"typescript"
],
"bugs": "https://github.com/{{username}}/{{repository}}/issues",
"repository": "github:{{username}}/{{repository}}",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/{{username}}"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"clean": "rm -rf ./dist/",
"reinstall": "npm run clean && npm install",
"test": "vitest",
"prepublint": "npm run build",
"publint": "publint",
"prepublishOnly": "npm run publint && npm run test"
}
}