-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "dictionary-fn",
"version": "1.0.2",
"description": "A simple utility function for typesafe translations.",
"license": "MIT",
"type": "module",
"keywords": [
"typesafe",
"typescript",
"dictionary",
"i18n",
"internationalization",
"localization",
"translation"
],
"author": "Mattia Dalzocchio <[email protected]>",
"homepage": "https://github.com/mattiaz9/dictionary-fn#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mattiaz9/dictionary-fn.git"
},
"bugs": {
"url": "https://github.com/mattiaz9/dictionary-fn/issues"
},
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "rm -rf dist && tsup src/index.ts --watch --config tsup.config.ts",
"build": "tsup src/index.ts --minify --config tsup.config.ts",
"test": "vitest run",
"perf": "tsc --noEmit ./tests/perf.test.ts",
"lint": "eslint --ext .ts,.tsx src"
},
"dependencies": {},
"devDependencies": {
"@types/node": "22.7.5",
"tsup": "8.3.0",
"typescript": "5.6.3",
"vitest": "2.1.3"
},
"packageManager": "[email protected]"
}