-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.78 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.78 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@faable/auth-js",
"version": "0.0.0-dev",
"author": "Marc Pomar <marc@faable.com>",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/faablecloud/auth-js.git"
},
"license": "SEE LICENSE.md",
"type": "module",
"main": "dist/main.js",
"types": "dist/dts/entrypoints/main.es.d.ts",
"exports": {
".": {
"types": "./dist/dts/entrypoints/main.es.d.ts",
"default": "./dist/main.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"homepage": "https://github.com/faablecloud/auth-js#readme",
"devDependencies": {
"@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.19.34",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"express": "^5.2.1",
"fs-extra": "^11.3.0",
"globals": "^17.6.0",
"http-server": "^14.1.1",
"prettier": "^3.8.3",
"rimraf": "^5.0.5",
"rollup": "^4.40.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"semantic-release": "^25.0.2",
"semantic-release-replace-plugin": "^1.2.7",
"tslib": "^2.8.1",
"typedoc": "^0.28.19",
"typescript": "^5.8.3",
"vitest": "^4.1.6"
},
"scripts": {
"prebuild": "npm run clean",
"build": "rollup -c",
"dev": "rimraf pkg && rollup -c --bundleConfigAsCjs -w",
"clean": "rimraf pkg",
"start": "npx http-server ./ -p 8082 --cors",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:pack": "node tests/pack/verify-pack.mjs",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,mjs}\" \"*.md\" \"*.{js,cjs,mjs}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,mjs}\" \"*.md\" \"*.{js,cjs,mjs}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs": "typedoc",
"docs:watch": "typedoc --watch"
},
"engines": {
"node": ">=22.8"
},
"files": [
"dist/*"
]
}