forked from vixalien/sticky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 822 Bytes
/
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
{
"name": "sticky-notes",
"version": "0.1.1",
"description": "Pin notes to your desktop",
"private": true,
"main": "src/main.ts",
"repository": "https://gitlab.gnome.org/BrainBlasted/sticky-notes",
"author": "Angelo Verlain <[email protected]>",
"license": "MIT",
"dependencies": {
"linkifyjs": "^4.1.1",
"typescript": "^4.7.4"
},
"type": "module",
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/stylus": "^0.48.38",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"esbuild": "^0.17.10",
"eslint": "^8.21.0",
"minimist": "^1.2.8",
"mkdirp": "^2.1.3",
"stylus": "^0.59.0"
},
"scripts": {
"build": "node lib/build.js",
"css": "node lib/stylus.js",
"typecheck": "tsc --strict --noEmit"
}
}