-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.15 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pm-xtn-dom",
"version": "1.1.2",
"description": "PM extension DOM access",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maxzz/pm-xtn-dom.git"
},
"homepage": "https://github.com/maxzz/pm-xtn-dom",
"files": [
"./src",
"./dist"
],
"type": "module",
"_types": "./dist/es6/index.d.ts",
"_main": "./dist/es6/index.mjs",
"exports": {
"./package.json": "./package.json",
"./ts": "./src/index.ts",
"./builder": {
"types": "./dist/es6/builder/index.d.ts",
"import": {
"types": "./dist/es6/builder/index.d.ts",
"default": "./dist/es6/builder/index.mjs"
},
"default": "./dist/es6/builder/index.mjs"
},
"./es6": {
"types": "./dist/es6/dom/types/index.d.ts",
"import": "./dist/es6/dom/index.mjs",
"default": "./dist/es6/dom/index.mjs"
},
"./*": {
"types": "./dist/es6/dom/types/index.d.ts",
"import": {
"types": "./dist/es6/dom/types/index.d.ts",
"default": "./dist/es6/dom/index.mjs"
},
"default": "./dist/es6/dom/index.mjs"
}
},
"typesVersions": {
">=3.1": {
"ts": [
"./src/index.ts"
],
"builder": [
"./dist/es6/builder/index.d.ts"
],
"es6": [
"./dist/es6/dom/types/index.d.ts"
],
"./*": [
"./dist/es6/dom/types/index.d.ts"
]
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"parse5": "^7.1.2",
"rimraf": "^6.0.1",
"rollup": "^4.19.1",
"tslib": "^2.6.3",
"typescript": "5.5.4"
},
"scripts": {
"dev": "tsc -w",
"build": "rimraf dist && rollup -c",
"to-npm": "pnpm publish --no-git-checks"
}
}