-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.76 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
{
"name": "stimulus-vite-helpers",
"version": "3.1.0",
"description": "Vite.js helpers for the Stimulus JavaScript framework",
"license": "MIT",
"author": "Máximo Mussini <[email protected]>",
"files": [
"dist"
],
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ElMassimo/stimulus-vite-helpers"
},
"homepage": "https://github.com/ElMassimo/stimulus-vite-helpers",
"bugs": "https://github.com/ElMassimo/stimulus-vite-helpers/issues",
"keywords": [
"stimulus",
"stimulusjs",
"rails",
"ruby",
"vite",
"vite-plugin",
"vitejs"
],
"scripts": {
"lint": "eslint .",
"test": "vitest",
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm --clean",
"release": "nr build && npm publish",
"prepublishOnly": "npm run build",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"devDependencies": {
"@hotwired/stimulus": "^3.2.2",
"@mussi/eslint-config": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"eslint": "^7.32.0",
"rollup": "^4.9.6",
"standard-version": "^9.5.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
},
"eslintConfig": {
"extends": [
"@mussi/eslint-config"
]
},
"publishConfig": {
"access": "public"
}
}