-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
53
54
55
{
"name": "qwik-strapi-auth",
"version": "0.1.1",
"description": "Plugin for authentication with Strapi in Qwik projects",
"author": "Konstantin Chuykov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/chuikoffru/qwik-strapi-auth.git"
},
"license": "MIT",
"main": "./lib/index.qwik.mjs",
"qwik": "./lib/index.qwik.mjs",
"types": "./lib-types/index.d.ts",
"exports": {
".": {
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs",
"types": "./lib-types/index.d.ts"
}
},
"files": [
"lib",
"lib-types"
],
"engines": {
"node": ">=15.0.0"
},
"private": false,
"type": "module",
"scripts": {
"build": "qwik build",
"build.lib": "vite build --mode lib",
"build.types": "tsc --emitDeclarationOnly",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"release": "np"
},
"devDependencies": {
"@builder.io/qwik": "1.2.6",
"@builder.io/qwik-city": "^1.2.6",
"@types/eslint": "8.44.2",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"eslint": "8.47.0",
"eslint-plugin-qwik": "1.2.6",
"np": "8.0.4",
"prettier": "3.0.1",
"typescript": "5.1.6",
"undici": "5.23.0",
"vite": "4.4.9",
"vite-tsconfig-paths": "4.2.0"
}
}