-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "@userfront/core",
"version": "1.1.1",
"description": "Userfront core JS library",
"source": "src/index.js",
"main": "build/userfront-core.js",
"module": "build/userfront-core.module.js",
"unpkg": "build/userfront-core.umd.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"build": "rollup --config && npm run ts:copy",
"pub": "npm publish",
"pub:beta": "npm publish --tag beta",
"reinstall": "rm -rf node_modules && rm package-lock.json && npm install",
"ts:copy": "cp ts/index.d.ts build/userfront-core.d.ts; cp ts/index.d.ts build/userfront-core.modern.d.ts; cp ts/index.d.ts build/userfront-core.module.d.ts; cp ts/index.d.ts build/userfront-core.umd.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userfront/userfront-core.git"
},
"keywords": [
"userfront",
"auth",
"authentication",
"authorization",
"access",
"control",
"multi-tenancy"
],
"author": "Userfront",
"bugs": {
"url": "https://github.com/userfront/userfront-core/issues"
},
"homepage": "https://github.com/userfront/userfront-core#readme",
"dependencies": {
"axios": "1.7.7",
"js-cookie": "2.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@vitest/coverage-v8": "1.4.0",
"fast-check": "3.16.0",
"jsdom": "^24.0.0",
"jsonwebtoken": "9.0.2",
"rollup": "4.13.0",
"typescript": "5.4.3",
"vitest": "1.4.0"
}
}