-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.34 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
{
"name": "@wethegit/preact-stickerbook",
"version": "5.0.0",
"description": "Easily create collage apps that are accessible by default.",
"files": [
"dist/*"
],
"style": "dist/style.css",
"css": "dist/style.css",
"type": "module",
"engines": {
"node": ">=v20.10.0"
},
"types": "./dist/main.d.ts",
"exports": {
".": "./dist/preact-stickerbook.js",
"./style.css": "./dist/style.css"
},
"scripts": {
"prepare": "husky install",
"start": "vite",
"build": "rm -rf dist && vite build",
"lint:scripts": "eslint --fix --ext .jsx,.js,.ts,.tsx --ignore-path .gitignore .",
"lint:styles": "stylelint src/**/*.{css,scss}",
"lint": "npm run lint:scripts && npm run lint:styles",
"typecheck": "tsc --noEmit",
"format": "prettier --write ."
},
"dependencies": {
"preact": "^10.13.1",
"wtc-math": "^1.0.20",
"wtc-simplegl": "^1.0.3"
},
"peerDependencies": {
"preact": "^10.13.1"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"@types/node": "~20.17.1",
"@typescript-eslint/eslint-plugin": "~7.18.0",
"@typescript-eslint/parser": "~7.18.0",
"eslint": "~8.57.0",
"eslint-config-preact": "~1.5.0",
"eslint-config-prettier": "~9.1.0",
"eslint-import-resolver-typescript": "~3.6.1",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-jest": "~28.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.23",
"postcss-scss": "^4.0.6",
"prettier": "~3.3.0",
"sass": "^1.62.1",
"stylelint": "^16.6.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-selector-bem-pattern": "^4.0.0",
"typescript": "~5.6.2",
"vite": "^5.2.11",
"vite-plugin-dts": "~3.9.1"
},
"keywords": [
"preact",
"preact-component"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wethegit/preact-stickerbook.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/wethegit/preact-stickerbook/issues"
},
"homepage": "https://github.com/wethegit/preact-stickerbook#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier -w -u",
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{css,scss}": "stylelint --fix"
}
}