-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "protofun",
"license": "UNLICENSED",
"version": "0.3.5",
"files": [
"dist",
"src"
],
"main": "dist/protofun.js",
"module": "dist/protofun.mjs",
"typings": "dist/protofun.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc --project tsconfig.prod.json",
"check-types": "tsc --noEmit",
"prepublish": "npm run build",
"pack": "npm run pack",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"urql": "^4.0.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vitest/coverage-c8": "^0.24.3",
"@vitest/ui": "^0.24.3",
"concurrently": "^7.4.0",
"cross-fetch": "^3.1.5",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^2.7.1",
"typescript": "^4.5.4",
"urql": "^4.0.5",
"vite": "^2.9.15",
"vitest": "^0.24.3"
}
}