forked from domchristie/turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "@hotwired/turbo",
"version": "7.0.0-beta.1",
"description": "Turbo makes navigating your web application faster",
"module": "dist/turbo.es2017-esm.js",
"main": "dist/turbo.es5-umd.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/*.js",
"dist/*.js.map",
"dist/types/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hotwired/turbo.git"
},
"keywords": [
"hotwire",
"turbo",
"browser",
"pushstate"
],
"author": "javan, packagethief, sstephenson",
"license": "MIT",
"bugs": {
"url": "https://github.com/hotwired/turbo/issues"
},
"homepage": "https://turbo.hotwire.dev",
"devDependencies": {
"@rollup/plugin-node-resolve": "9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/multer": "^1.4.5",
"intern": "^4.9.0",
"multer": "^1.4.2",
"rollup": "^2.35.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"scripts": {
"clean": "rm -fr dist",
"build": "rollup -c && tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types",
"watch": "rollup -wc",
"start": "node src/tests/runner.js serveOnly",
"test": "NODE_OPTIONS=--inspect node src/tests/runner.js"
}
}