-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.7 KB
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
{
"name": "simple-watch",
"version": "1.0.0",
"description": "A lightweight, zero-dependency analog clock widget built with TypeScript and CSS",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./css": "./css/watch.css"
},
"files": [
"dist",
"css/watch.css"
],
"scripts": {
"build": "tsdown",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"release": "semantic-release"
},
"keywords": [
"watch",
"clock",
"analog",
"widget",
"typescript"
],
"author": "Hajanirina Ridjvan Randrianandraina",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "14.1.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@typescript/native": "npm:typescript@^7.0.2",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3",
"tsdown": "^0.21.10",
"typescript": "npm:@typescript/typescript6@^6.0.2"
},
"engines": {
"node": "^24"
},
"packageManager": "pnpm@10.33.3"
}