-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 2.01 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
{
"name": "notion-assignment-import",
"type": "module",
"license": "SEE LICENSE IN LICENSE.md",
"version": "5.0.4",
"repository": {
"type": "git",
"url": "https://github.com/JamesNZL/notion-assignment-import.git"
},
"devDependencies": {
"@types/turndown": "^5.0.5",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"del": "^7.1.0",
"eslint": "^8.57.1",
"gulp": "^5.0.0",
"gulp-esbuild": "^0.12.1",
"gulp-execa": "^7.0.1",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-zip": "^6.0.0",
"postcss": "^8.4.47",
"sass": "^1.80.3",
"standard-version": "^9.5.0",
"typescript": "^5.6.3",
"webextension-polyfill": "^0.12.0",
"yargs": "^17.7.2"
},
"dependencies": {
"@notionhq/client": "^2.2.15",
"@tryfabric/martian": "^1.2.4",
"moment-timezone": "^0.5.45",
"path-browserify": "^1.0.1",
"turndown": "^7.2.0",
"url-polyfill": "^1.1.12"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"watch": "gulp watch --debug=true --gulpfile build/gulpfile.js --cwd .",
"debug": "gulp --debug=true --gulpfile build/gulpfile.js --cwd .",
"build": "gulp --debug=false --gulpfile build/gulpfile.js --cwd .",
"release": "standard-version --sign --commit-all",
"publish": "git push --follow-tags origin main"
},
"standard-version": {
"scripts": {
"prerelease": "pnpm update -D",
"postbump": "pnpm run build && gulp --gulpfile build/gulpfile.js --cwd . release && git add releases && git add pnpm-lock.yaml"
},
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "src/manifest-chromium.json",
"type": "json"
},
{
"filename": "src/manifest-firefox.json",
"type": "json"
}
]
},
"browser": {
"path": "path-browserify",
"url": "url-polyfill"
}
}