-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (52 loc) · 1.25 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
{
"name": "jdomjs",
"version": "3.1.17",
"description": "A wrapper for query selector and html elements",
"main": "./index.js",
"exports": {
".": {
"default": "./index.js",
"import": "./index.js",
"require": "./index.js",
"types": "./types/index.d.ts"
},
"./dist.js": "./dist/jdom.js",
"./src/*": {
"default": "./src/*",
"import": "./src/*",
"require": "./src/*",
"types": [
"./types/src/*.d.ts",
"./types/src/*"
]
}
},
"types": "types/index.d.ts",
"scripts": {
"ts": "npx -p typescript tsc src/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"build": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interaapps/jdom.git"
},
"keywords": [
"JDom",
"Dom selector"
],
"author": "InteraApps",
"license": "ISC",
"bugs": {
"url": "https://github.com/interaapps/jdom/issues"
},
"homepage": "https://interaapps.de",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"babel-polyfill": "^6.26.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"typescript": "^5.4.2"
}
}