-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.28 KB
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
{
"name": "simpler-cookie-consent",
"version": "1.7.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"lint:staged": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore --cache",
"git-hooks:commit-msg": "commitlint --edit",
"git-hooks:pre-commit": "lint-staged",
"prepare": "husky install",
"preversion": "npm run lint:staged . && npm run build",
"postversion": "git push && git push --tags && npm publish && rm -rf ./dist"
},
"files": [
"dist"
],
"main": "./dist/simpler-cookie-consent.umd.js",
"module": "./dist/simpler-cookie-consent.es.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/simpler-cookie-consent.es.js",
"require": "./dist/simpler-cookie-consent.umd.js",
"types": "./dist/main.d.ts"
},
"./dist/style.css": {
"require": "./dist/style.css",
"import": "./dist/style.css",
"types": "./dist/main.d.ts"
},
"./style.css": {
"require": "./dist/style.css",
"import": "./dist/style.css",
"types": "./dist/main.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ps73/cookie-consent.git"
},
"dependencies": {
"@nanostores/preact": "^1.0.0",
"js-cookie": "^3.0.1",
"nanostores": "^1.1.0",
"preact": "^10.28.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@preact/preset-vite": "^2.0.0",
"@rollup/plugin-replace": "^5.0.5",
"@types/js-cookie": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.53.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"path": "^0.12.7",
"postcss": "^8.3.11",
"postcss-nested": "^6.0.1",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.3",
"rollup-plugin-visualizer": "^5.5.2",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3"
}
}