-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.76 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
62
63
64
{
"name": "template-common",
"version": "0.0.1",
"description": "A common web project",
"author": "Curtis Dulmage",
"license": "ISC",
"keywords": [
"web",
"development"
],
"homepage": "https://github.com/beefchimi/template-common#readme",
"bugs": {
"url": "https://github.com/beefchimi/template-common/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beefchimi/template-common.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/template-common.umd.js",
"module": "./dist/template-common.es.js",
"exports": {
".": {
"import": "./dist/template-common.es.js",
"require": "./dist/template-common.umd.js"
}
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"extends @beefchimi/browserslist-config"
],
"prettier": "@beefchimi/prettier-config",
"scripts": {
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "vitest",
"coverage": "vitest --coverage --run",
"build": "npm run clean && tsc && vite build",
"clean": "rm -rf coverage && rm -rf dist",
"nuke": "npm run clean && rm -rf node_modules && rm -rf package-lock.json && npm cache clean --force",
"report": "changeset",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@beefchimi/browserslist-config": "^0.0.9",
"@beefchimi/eslint-plugin": "^0.0.9",
"@beefchimi/prettier-config": "^0.0.9",
"@beefchimi/typescript-config": "^0.0.9",
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.19.0",
"@types/node": "^17.0.10",
"vite": "^2.7.13",
"vite-plugin-dts": "^0.9.9",
"vitest": "^0.1.27"
}
}