-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "sinanjs",
"version": "1.0.5",
"license": "MIT",
"author": "FeiXiang",
"description": "Chinese number extraction tool",
"main": "dist/sinan.umd.js",
"module": "./dist/sinan.es.js",
"unpkg": "./dist/sinan.umd.js",
"types": "./src/index.d.ts",
"keywords": [
"sinan",
"sinanjs",
"extract",
"extract number",
"Chinese number"
],
"repository": {
"type": "git",
"url": "https://github.com/fxjs/sinanJS.git"
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"publish": "npm login && npm publish"
},
"dependencies": {
"lodash-es": "^4.17.21",
"vue": "^3.2.25"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.41",
"@vitejs/plugin-vue": "^2.3.1",
"prettier": "2.6.2",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vue-tsc": "^0.34.7"
}
}