-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.82 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
86
87
88
89
90
{
"name": "realue",
"private": false,
"version": "4.12.2",
"description": "Simple value management for React components.",
"keywords": [
"modularity",
"react",
"component",
"state",
"hooks"
],
"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/realue.git"
},
"files": [
"dist",
"lib",
"!lib/old",
"!lib/**/*.test.ts?",
"!src",
"!src/old",
"README.md",
"doc/",
"!doc/.nojekyll"
],
"scripts": {
"dev": "vite",
"dev:test": "vitest",
"build": "rm -rf dist/; tsc --project tsconfig.package.json;",
"build:doc": "typedoc",
"build:doc:save": "typedoc --tsconfig tsconfig.package.json && git add -A && git commit -a -m 'chore: update doc'",
"prepare": "npm run build",
"start": "vite preview",
"format": "prettier --check \"{src,scripts}/**/*.[jt]s\"",
"format:fix": "prettier --write \"{src,scripts}/**/*.[jt]s\"",
"test": "vitest run && tsc --noEmit && npm run format",
"lint": "npm run lint:ts",
"lint:fix": "npm run lint:ts:fix",
"lint:ts": "eslint . && tsc --noEmit",
"lint:ts:fix": "eslint --fix .",
"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"
},
"dependencies": {
"@preact/signals": "^1.3.0",
"is-promise": "^4.0.0",
"preact": "^10.24.3",
"unchangeable": "^1.7.0"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@preact/preset-vite": "^2.9.1",
"@types/node": "^20.8.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-preact": "^1.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-inferno": "^7.33.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-sort-keys": "^2.3.5",
"eslint-plugin-tailwindcss": "^3.15.1",
"eslint-plugin-vitest": "^0.3.26",
"futurise": "^1.7.1",
"nanoid": "^5.0.6",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.3.3",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.7",
"typescript": "^5.6.2",
"vite": "^4.5.2",
"vite-plugin-module-list": "^2.2.2",
"vitest": "^0.34.6"
}
}