-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 1.83 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
76
77
78
{
"name": "tatooine",
"version": "3.1.1",
"description": "A powerful scraper for JavaScript Developers",
"directories": {
"doc": "docs",
"lib": "lib"
},
"author": "Beto Muniz <contato@betomuniz.com>",
"license": "MIT",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/obetomuniz/tatooine.git"
},
"bugs": {
"url": "https://github.com/obetomuniz/tatooine/issues",
"email": "contato@betomuniz.com"
},
"dependencies": {
"axios": "^1.3.4",
"jsdom": "^21.1.1",
"lodash.get": "^4.4.2",
"puppeteer": "^19.7.5",
"xpath-ts": "^1.3.13"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jsdom": "^21.1.0",
"@types/lodash.get": "^4.4.7",
"release-it": "^15.9.3",
"rollup": "^3.20.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-filesize": "^10.0.0",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
},
"scripts": {
"pkg": "rm -rf ./dist/ && rollup -c",
"prepublishOnly": "npm run pkg",
"release": "release-it"
},
"release-it": {
"git": {
"commitMessage": "Release v${version}"
},
"github": {
"release": true,
"web": true
},
"npm": {
"publish": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "docs/CHANGELOG.md",
"header": "# Changelog",
"preset": {
"name": "conventionalcommits"
}
}
}
}
}