-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.08 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
{
"name": "ftl.rocks",
"version": "0.0.6",
"description": "Faster than the speed of site",
"main": "dist/index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "vitest run",
"build": "vite build",
"clean": "rm -rf dist node_modules",
"lint": "xo src",
"format": "xo src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airgap/ftl.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/airgap/ftl/issues"
},
"homepage": "https://github.com/airgap/ftl#readme",
"devDependencies": {
"rollup-plugin-uglify": "^5.0.2",
"serialize-javascript": "^6.0.2",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0",
"xo": "^0.58.0"
},
"xo": {
"rules": {
"unicorn/filename-case": [
"error",
{
"cases": {
"camelCase": true,
"pascalCase": true
},
"ignore": [
"Dockerfile"
]
}
],
"import/extensions": "off"
}
}
}