-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "spicy-input",
"version": "0.0.7",
"description": "Spicy-input provides a concise interface for retrieving, setting, and subscribing to these user inputs.",
"scripts": {
"build": "tsc -p ./tsconfig.json && tsc -p ./tsconfig.cjs.json && tsconfig-to-dual-package && tsup",
"clean": "git clean -fx lib/ module/ dist/",
"prepublishOnly": "npm run clean && npm run build",
"watch": "tsc -p . --watch"
},
"keywords": [
"swagger",
"swagger-ui",
"swagger-ui-plugin"
],
"devDependencies": {
"@biomejs/biome": "1.4.1",
"tsconfig-to-dual-package": "^1.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/swagger-ui": "^3.52.4",
"immutable": "^3.x.x"
},
"sideEffects": false,
"type": "module",
"main": "./lib/index.js",
"module": "./module/index.js",
"types": "./module/index.d.ts",
"exports": {
".": {
"import": {
"types": "./module/index.d.ts",
"default": "./module/index.js"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib/",
"module/",
"src/",
"dist/"
],
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"author": "ryusuke410",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ryusuke410/spicy-input.git"
},
"bugs": {
"url": "https://github.com/ryusuke410/spicy-input/issues"
},
"homepage": "https://github.com/ryusuke410/spicy-input#readme"
}