generated from nevoland/foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.92 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "quetch",
"version": "0.19.5",
"type": "module",
"main": "./dist/main.js",
"exports": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
},
"author": "David Bonnet <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nevoland/quetch.git"
},
"files": [
"dist",
"lib",
"!lib/old",
"!lib/**/*.test.ts?",
"!src",
"!src/old",
"README.md",
"doc/",
"!doc/.nojekyll"
],
"scripts": {
"dev": "vite",
"dev:test": "vitest --update",
"test": "npm run lint && npm run format && vitest run",
"build": "rm -rf dist; tsc --project tsconfig.package.json",
"build:doc": "typedoc --tsconfig tsconfig.package.json",
"build:doc:save": "typedoc --tsconfig tsconfig.package.json && git add -A && git commit -a -m 'Update doc'",
"build:demo": "vite build",
"prepare": "npm run build",
"start": "vite preview",
"format": "prettier --check './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
"format:fix": "prettier --write './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
"lint": "npm run lint:ts",
"lint:fix": "npm run lint:ts:fix",
"lint:ts": "eslint . && tsc --project tsconfig.package.json --noEmit",
"lint:types": "tsc --project tsconfig.package.json --noEmit",
"lint:ts:fix": "eslint --fix .",
"release:init": "npm publish --access=public",
"release:patch": "npm version patch && git push origin --follow-tags && npm publish",
"release:minor": "npm version minor && git push origin --follow-tags && npm publish",
"release:major": "npm version major && git push origin --follow-tags && npm publish",
"release:alpha": "npm version prerelease --preid=alpha && git push origin --follow-tags && npm publish --tag=next",
"release:beta": "npm version prerelease --preid=beta && git push origin --follow-tags && npm publish --tag=next"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"@nevoland/get-global": "^2.0.2",
"@preact/preset-vite": "^2.9.1",
"@types/eslint": "^9.6.1",
"@types/node": "^22.8.5",
"@typescript-eslint/parser": "^8.16.0",
"autoprefixer": "^10.4.20",
"cssnano": "^6.1.2",
"eslint": "^8.57.1",
"eslint-config-preact": "^1.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-inferno": "^7.34.0",
"eslint-plugin-sort-keys": "^2.3.5",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-vitest": "^0.5.4",
"postcss": "^8.4.47",
"postcss-pseudo-classes": "^0.4.0",
"preact": "^10.24.3",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typedoc": "^0.27.0",
"typedoc-plugin-markdown": "^4.3.0",
"typescript": "^5.7.2",
"vite": "^5.4.10",
"vite-plugin-module-list": "^2.2.2",
"vitest": "^2.1.4"
},
"dependencies": {
"futurise": "^1.7.1",
"unchangeable": "^1.7.3"
}
}