-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.95 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.95 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
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
{
"name": "offline-detector-packages",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"dev": "lerna run dev --parallel",
"type-check": "lerna run type-check",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"test": "lerna run test",
"test:watch": "lerna run test:watch",
"test:coverage": "lerna run test:coverage",
"format": "prettier --write \"**/*.{js,ts,json,md}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{js,ts,json,md}\" --ignore-path .prettierignore",
"clean": "lerna run clean",
"bootstrap": "lerna bootstrap",
"publish": "lerna publish",
"version": "lerna version",
"changed": "lerna changed",
"diff": "lerna diff",
"demo:site:dev": "cd examples/site && npm run dev",
"demo:site:build": "cd examples/site && npm run build",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"release": "npm run build && npm run changeset:publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiteshshetty-dev/offline-detector.git"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"lerna": "^8.2.3",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.50.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.2"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{css,md,js,jsx,json,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}