-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 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
{
"name": "@realtimeregister/adac-api-client",
"private": false,
"version": "1.0.0",
"type": "module",
"keywords": [
"realtimeregister",
"domains",
"tld"
],
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/realtimeregister/adac-api-client.git"
},
"license": "MIT",
"main": "./dist/adac-api-client.umd.js",
"module": "./dist/adac-api-client.es.js",
"scripts": {
"dev": "vite build --mode dev --watch",
"dev:playground": "APP_NAME=playground vite",
"dev:pricing": "APP_NAME=pricingExample vite",
"build": "tsc && vite build --mode prod",
"lint": "eslint",
"lint:fix": "eslint --fix",
"preview": "vite build --mode prod && yalc push"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/adac-api-client.es.js",
"require": "./dist/adac-api-client.umd.js"
}
},
"resolutions": {
"esbuild": "^0.25.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^24.2.0",
"@vitejs/plugin-vue": "^6.0.1",
"eslint": "^9.11.1",
"terser": "^5.34.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.1",
"vite-plugin-dts": "^4.2.3",
"vue": "^3.5.20",
"yalc": "^1.0.0-pre.53",
"yarn-audit-fix": "^10.1.1"
}
}