-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
{
"name": "@atomico/wrapper",
"version": "1.5.0",
"description": "",
"main": "index.js",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"exports": "exports src/* --exports --types --main proxy",
"prepublishOnly": "npm run coverage && npm run exports",
"create:component": "scaff component src"
},
"keywords": [],
"devDependencies": {
"@atomico/exports": "^0.37.0",
"@atomico/tsconfig": "^1.0.0",
"@vitest/coverage-c8": "^0.23.4",
"happy-dom": "^6.0.4",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vitest": "^0.23.4"
},
"prettier": {
"tabWidth": 4,
"singleQuote": false
},
"author": "UpperCod",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomicojs/wrapper/issues"
},
"homepage": "https://github.com/atomicojs/wrapper#readme",
"module": "./dist/proxy.js",
"exports": {
"./proxy": "./dist/proxy.js",
".": "./dist/proxy.js",
"./types": "./dist/types.js",
"./allow-deduple": "./dist/allow-deduple.js",
"./options": "./dist/options.js"
},
"types": "types/proxy.d.ts",
"typesVersions": {
"*": {
"proxy": [
"./types/proxy.d.ts"
],
"types": [
"./types/types.d.ts"
],
"allow-deduple": [
"./types/allow-deduple.d.ts"
],
"options": [
"./types/options.d.ts"
]
}
}
}