-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·101 lines (101 loc) · 2.98 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "linked-timer",
"displayName": "Linked Timer",
"description": "Real-time collaborative timer to use with your team.",
"homepage": "https://linkedtimer.pages.dev",
"icon": "icon.png",
"version": "3.4.4",
"publisher": "felladrin",
"author": {
"name": "Victor Nogueira"
},
"private": true,
"license": "MIT",
"pricing": "Free",
"repository": {
"url": "https://github.com/felladrin/LinkedTimer",
"type": "git"
},
"engines": {
"vscode": "^2023.0.0"
},
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "linked-timer.new-timer",
"title": "New Timer",
"category": "Linked Timer"
}
]
},
"activationEvents": [
"onWebviewPanel:linked-timer"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run build",
"build-extension": "tsc -p ./src/extension/tsconfig.json",
"build-webview": "parcel build ./src/webview/index.html --public-url ./",
"build": "run-p build-extension build-webview",
"serve": "parcel ./src/webview/index.html --public-url ./",
"watch-extension": "tsc -watch -p ./src/extension/tsconfig.json",
"watch-webview": "parcel watch ./src/webview/index.html --public-url ./",
"watch": "run-p watch-extension watch-webview",
"lint": "eslint --fix src && ts-prune -p src/webview/tsconfig.json && jscpd src && dpdm --tree false --warning false src/webview/scripts/subscriptions/onWindowDOMContentLoaded.tsx",
"package-extension": "npx vsce package"
},
"devDependencies": {
"@emotion/react": "^11.10.6",
"@eslint/js": "^9.0.0",
"@faker-js/faker": "^9.0.0",
"@formkit/auto-animate": "^0.8.0",
"@mantine/core": "^7.0.0",
"@mantine/hooks": "^7.0.0",
"@parcel/optimizer-data-url": "^2.8.3",
"@parcel/resolver-glob": "^2.8.3",
"@parcel/transformer-inline-string": "^2.8.3",
"@parcel/transformer-yaml": "^2.8.3",
"@tabler/icons-react": "^3.0.0",
"@types/debug": "^4.1.7",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/simple-peer": "^9.11.5",
"@types/vscode": "^1.77.0",
"bittorrent-tracker-websocket-client": "github:felladrin/bittorrent-tracker-websocket-client#v12.0.1",
"camelcase": "^8.0.0",
"create-pubsub": "^1.6.0",
"dpdm": "^3.13.0",
"easytimer.js": "^4.5.4",
"eslint": "^9.0.0",
"events": "^3.3.0",
"globals": "^15.0.0",
"jscpd": "^4.0.0",
"load-script": "^2.0.0",
"npm-run-all2": "^7.0.0",
"parcel": "^2.8.3",
"postcss": "^8.4.29",
"postcss-preset-mantine": "^1.7.0",
"postcss-simple-vars": "^7.0.1",
"process": "^0.11.10",
"random-item": "^4.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tiny-hashes": "^1.0.1",
"ts-prune": "^0.10.3",
"typescript": "^5.0.3",
"typescript-eslint": "^8.0.0"
},
"overrides": {
"xml2js": "^0.6.0"
},
"targets": {
"main": false
},
"browserslist": [
"last 2 Chrome versions"
]
}