forked from ipfs-examples/helia-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "helia-examples",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"reset": "aegir run clean && aegir clean **/node_modules **/package-lock.json",
"test": "aegir run test",
"clean": "aegir run clean",
"build": "aegir run build",
"lint": "aegir exec aegir -- lint --files '**/*.{js,ts,jsx}' '!**/node_modules/**' '!**/dist/**'",
"dep-check": "aegir run dep-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-examples/helia-examples.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ipfs-examples/helia-examples/issues"
},
"homepage": "https://github.com/ipfs-examples/helia-examples#readme",
"devDependencies": {
"aegir": "^38.1.0",
"eslint-plugin-react": "^7.32.2"
},
"workspaces": [
"examples/*"
],
"private": true,
"eslintConfig": {
"extends": [
"ipfs",
"plugin:react/recommended"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2023
},
"settings": {
"react": {
"version": "detect"
}
}
}
}