-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
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
{
"name": "@orbit/orbit",
"private": true,
"description": "Core library for Orbit - a flexible data access and synchronization layer.",
"keywords": [
"orbit",
"orbit.js",
"data",
"synchronization"
],
"repository": "https://github.com/orbitjs/orbit",
"license": "MIT",
"contributors": [
"Dan Gebhardt <dan@cerebris.com>"
],
"scripts": {
"build": "pnpm -r run build",
"compile": "pnpm -r run build && pnpm -r run compile",
"lint": "pnpm -r run lint",
"test": "pnpm -r run build && pnpm -r --workspace-concurrency=1 run test"
},
"prettier": "@orbit/prettier-config",
"devDependencies": {
"@orbit/prettier-config": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"release-plan": "^0.17.0",
"snowpack": "^3.0.11",
"testem": "^3.2.0"
},
"packageManager": "pnpm@10.16.1",
"engines": {
"node": ">= 18",
"pnpm": ">= 10"
}
}