-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 872 Bytes
/
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
{
"version": "0.5.1",
"license": "MIT",
"homepage": "https://github.com/gastlygem/silabacion",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test",
"lint": "dts lint",
"prepare": "dts build"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "silabacion",
"author": "Joel Wang",
"module": "dist/silabacion.esm.js",
"devDependencies": {
"@types/jest": "^29.5.14",
"dts-cli": "^2.0.5",
"husky": "^9.1.7",
"tslib": "^2.7.0",
"typescript": "^5.7.3"
},
"keywords": [
"spanish",
"español",
"syllable",
"sílaba",
"word",
"palabra"
]
}