forked from kbysiec/vite-vanilla-ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
{
"name": "@hexafuchs/:package_name",
"version": "0.0.1",
"homepage": "https://github.com/Hexafuchs/:package_name",
"contributors": [
{
"name": ":author_name",
"email": "[email protected]"
}
],
"keywords": [
"Hexafuchs",
"typescript"
],
"bugs": {
"url": "https://github.com/Hexafuchs/:package_name/issues"
},
"license": "MIT",
"type": "module",
"main": "./dist/:package_slug.cjs",
"module": "./dist/:package_slug.mjs",
"exports": {
".": {
"require": "./dist/:package_slug.cjs",
"import": "./dist/:package_slug.mjs"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite --host",
"build": "rimraf build/**/* && tsc && vite build && copyfiles ./package.json build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"lint:scripts": "eslint . --ext .ts,.js",
"lint:styles": "stylelint ./**/*.{css,scss,sass}",
"format:scripts": "prettier . --write",
"format:styles": "stylelint ./**/*.{css,scss,sass} --fix --aei",
"format": "npm run format:scripts && npm run format:styles",
"docs": "typedoc"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.2.1",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"postcss-scss": "^4.0.9",
"postcss-sass": "^0.5.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"stylelint": "^16.2.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^4.0.1",
"vitest": "^1.2.1"
}
}