-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.86 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
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
102
103
{
"name": "dev-dict",
"version": "0.14.2",
"description": "A community-driven collection of software development terms with explanations in multiple languages. Perfect for building multilingual developer tools, documentation sites, and educational platforms.",
"author": "Cornelius Weidmann <cornelius@kyco.io> (https://kyco.io)",
"license": "MIT",
"keywords": [
"dictionary",
"developer dictionary",
"programming dictionary",
"software development",
"dev terms",
"programming terms",
"tech terms",
"software terms",
"coding terms",
"multilingual",
"localisation",
"i18n",
"internationalisation",
"typescript",
"glossary",
"encyclopedia",
"definitions",
"terminology",
"technical definitions",
"developer glossary",
"programming glossary",
"tech glossary",
"software glossary",
"dev-dict"
],
"homepage": "https://kyco.github.io/dev-dict",
"repository": {
"type": "git",
"url": "git+https://github.com/kyco/dev-dict.git"
},
"bugs": {
"url": "https://github.com/kyco/dev-dict/issues"
},
"type": "module",
"main": "./dist/index.js",
"unpkg": "./dist/dev-dict.min.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./terms": {
"types": "./dist/terms-entry.d.ts",
"import": "./dist/terms-entry.js"
},
"./types": {
"types": "./dist/types-entry.d.ts",
"import": "./dist/types-entry.js"
},
"./tags": {
"types": "./dist/tags-entry.d.ts",
"import": "./dist/tags-entry.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"provenance": true
},
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --write .",
"build": "vite build && BUILD_UMD=true vite build",
"build:watch": "vite build --watch",
"demo:dev": "pnpm build:watch & cd demo && pnpm dev",
"demo:build": "pnpm build && cd demo && pnpm build",
"demo:preview": "cd demo && pnpm preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"bundle-analyzer": "npx vite-bundle-visualizer",
"update-packages": "pnpm dlx npm-check-updates --format group --cooldown 1 -i"
},
"packageManager": "pnpm@11.10.0",
"devDependencies": {
"@biomejs/biome": "2.5.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^26.1.0",
"@vitest/ui": "^4.1.9",
"conventional-changelog-conventionalcommits": "^10.2.1",
"globals": "^17.7.0",
"semantic-release": "^25.0.5",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"vite": "^8.1.3",
"vite-plugin-dts": "^5.0.3",
"vitest": "^4.1.9"
}
}