-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.39 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
{
"name": "friendlier-words",
"version": "1.1.3",
"description": "A list of friendly words to use in your app.",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsup",
"dev": "tsup --watch",
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haydenbleasel/friendlier-words.git"
},
"keywords": [
"friendly",
"words",
"name",
"generate"
],
"author": "Hayden Bleasel <hello@haydenbleasel.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/haydenbleasel/friendlier-words/issues"
},
"homepage": "https://github.com/haydenbleasel/friendlier-words#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"jest": "^29.7.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"ultracite": "4.1.5"
},
"auto": {
"plugins": [
"npm",
"all-contributors",
"first-time-contributor",
"released"
]
}
}