-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.76 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.76 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
{
"name": "@netcorext/emoji-js",
"type": "module",
"version": "1.0.3",
"packageManager": "pnpm@9.15.4",
"description": "Emoji Library",
"author": "Netcorext <aren@netcorext.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/netcorext/emoji-js.git"
},
"bugs": {
"url": "https://github.com/netcorext/emoji-js/issues"
},
"keywords": ["emoji"],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.mjs",
"require": "./dist/types/index.js"
},
"./types/*": {
"types": "./dist/types/*/index.d.ts",
"import": "./dist/types/*/index.mjs",
"require": "./dist/types/*/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "simple-git-hooks",
"build": "vite build",
"bundle": "pnpm pack",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit --skipLibCheck",
"clear": "find . -maxdepth 3 \\( -iname '*.tgz' -o -iname 'dist' -o -iname '.turbo' -o -iname '.output' -o -iname '.eslintcache' \\) -exec rm -rf {} +",
"clear:half": "find . -maxdepth 3 \\( -iname '*.tgz' -o -iname 'dist' -o -iname '.turbo' -o -iname '.nuxt' -o -iname '.output' -o -iname '.eslintcache' \\) -exec rm -rf {} +",
"clear:full": "find . -maxdepth 3 \\( -iname '*.tgz' -o -iname 'dist' -o -iname '.turbo' -o -iname '.nuxt' -o -iname '.output' -o -iname 'node_modules' \\) -exec rm -rf {} +",
"clear:whole": "find . -maxdepth 3 \\( -iname '*.tgz' -o -iname 'dist' -o -iname '.turbo' -o -iname '.nuxt' -o -iname '.output' -o -iname 'node_modules' -o -iname '*-lock.*' \\) -exec rm -rf {} +"
},
"dependencies": {
"fuse.js": "^7.1.0",
"semver": "^7.7.3"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@types/node": "^22.7.5",
"@types/semver": "^7.7.1",
"consola": "^3.4.0",
"eslint": "^9.19.0",
"eslint-plugin-format": "^1.0.1",
"glob": "^11.0.3",
"readline": "^1.3.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.7.3",
"unbuild": "^2.0.0",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3",
"vitest": "^2.1.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm typecheck && pnpm lint:fix",
"pre-push": "pnpm typecheck && pnpm lint"
}
}