-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "@zero-dependency/{{name}}",
"version": "0.0.0",
"description": "{{description}}",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs.js",
"jsdelivr": "./dist/index.umd.js",
"unpkg": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
},
"files": [
"dist"
],
"keywords": [
"zero-dependency"
],
"license": "MIT",
"homepage": "https://github.com/zero-dependency/{{name}}",
"bugs": {
"url": "https://github.com/zero-dependency/{{name}}/issues"
},
"author": {
"name": "Vitalij Ryndin",
"email": "sys@crashmax.ru",
"url": "https://crashmax.ru"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"test": "vitest run --coverage",
"test:watch": "vitest --ui --watch --coverage",
"format": "prettier --write --ignore-unknown **",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@crashmax/prettier-config": "3.2.1",
"@crashmax/tsconfig": "2.0.1",
"@types/node": "18.15.11",
"@vitest/coverage-c8": "0.30.1",
"@vitest/ui": "0.30.1",
"jsdom": "21.1.1",
"typescript": "5.0.4",
"vite": "4.2.1",
"vite-plugin-dts": "2.2.0",
"vitest": "0.30.1"
}
}