-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
{
"name": "solid-orbit",
"version": "0.1.7",
"description": "Solid bindings for Orbit.",
"author": "Gabriel Anderson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andgate/solid-orbit"
},
"main": "lib/index.js",
"module": "dist/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"lib",
"types"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./lib/index.js"
}
},
"scripts": {
"prebuild": "rimraf dist/* lib/* types/*",
"prepublish": "npm run build",
"build": "npm-run-all -cnl build:*",
"build:js": "rollup -c",
"build:types": "tsc",
"package": "npm run build && electron-packager dist --out=release",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist lib types"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-solid": "^0.20.2",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"prettier-plugin-organize-imports": "^1.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.32.0",
"rollup-plugin-cleanup": "^3.2.1",
"typescript": "^4.0.2"
},
"dependencies": {
"@orbit/data": "^0.16.7",
"@orbit/memory": "^0.16.7",
"@orbit/record-cache": "^0.16.7",
"solid-js": "^0.21.3"
}
}