-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 2.97 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "promise-loading-spinner",
"version": "3.0.0",
"description": "Advanced handling of loaders/spinners based on one or multiple Promises",
"repository": {
"type": "git",
"url": "https://github.com/jenssimon/promise-loading-spinner"
},
"keywords": [
"loader",
"spinner",
"promises",
"loading-indicator",
"loading-spinner",
"loading-animation",
"vanilla-js",
"await-async",
"vanilla-javascript",
"vanillajs"
],
"author": "Jens Simon <https://github.com/jenssimon>",
"license": "MIT",
"main": "dist/src/loader.js",
"types": "dist/src/loader.d.ts",
"type": "module",
"scripts": {
"lint": "run-p 'lint:*'",
"lint:js": "eslint --ext .js,.mjs,.cjs,.ts,.mts,.cts .",
"lint:css": "stylelint '**/*.css'",
"build": "tsc",
"predemo": "run-s build",
"demo": "vite demo/ --open",
"prepublishOnly": "yarn build",
"test": "vitest",
"commit": "cz",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@jenssimon/eslint-config-base": "7.6.4",
"@jenssimon/eslint-config-typescript": "5.3.29",
"@preact/signals-core": "^1.6.0",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/eslint-plugin": "^1.1.14",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"husky": "9.1.7",
"jsdom": "^25.0.0",
"lint-staged": "15.2.11",
"npm-run-all2": "^7.0.0",
"pinst": "3.0.0",
"semantic-release": "24.2.0",
"stylelint": "^16.4.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard": "^36.0.0",
"typescript": "5.7.2",
"vite": "^6.0.0",
"vitest": "^2.0.0"
},
"files": [
"dist/src/loader.js",
"dist/src/loader.d.ts"
],
"eslintConfig": {
"parserOptions": {
"project": "tsconfig.json"
},
"extends": [
"@jenssimon/base/frontend"
],
"overrides": [
{
"files": [
"*.ts"
],
"extends": [
"@jenssimon/typescript"
],
"rules": {
"@typescript-eslint/naming-convention": "off"
}
},
{
"files": [
"**/*.test.*",
"**/*.spec.*",
"**/__tests__/**",
"**/__mocks__/**"
],
"plugins": [
"@vitest"
],
"extends": [
"plugin:@vitest/legacy-recommended"
]
},
{
"files": [
"*.cjs"
],
"rules": {
"import/no-commonjs": "off"
}
}
]
},
"packageManager": "yarn@4.5.3",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.{js,ts}": "eslint",
"**/*.css": "stylelint"
},
"release": {
"branches": [
"main"
]
}
}