-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "turbo_power",
"version": "0.7.1",
"description": "Power-pack for Turbo",
"main": "dist/turbo_power.js",
"module": "dist/turbo_power.js",
"unpkg": "dist/turbo_power.umd.js",
"types": "dist/types/index.d.ts",
"author": "Marco Roth",
"license": "MIT",
"repository": "https://github.com/marcoroth/turbo_power",
"sideEffects": false,
"scripts": {
"start": "cd playground && yarn start",
"prebuild": "yarn clean",
"build": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types && rollup -c",
"watch": "rollup -wc",
"dev": "concurrently 'yarn run watch' 'yarn run start'",
"clean": "rimraf dist",
"prerelease": "yarn build",
"test": "web-test-runner test/**/*.test.js",
"lint": "eslint .",
"format": "yarn lint --fix"
},
"devDependencies": {
"@hotwired/turbo": "^7.2.5",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^12.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.18.0",
"@web/test-runner": "^0.19.0",
"concurrently": "^9.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"rimraf": "^5.0.1",
"rollup": "^4.1.5",
"rollup-plugin-filesize": "^10.0.0",
"sinon": "^19.0.2",
"sourcemap": "^0.1.0",
"tslib": "^2.6.2",
"turbo-morph": "^0.2.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@hotwired/turbo": ">= 7.2"
}
}