-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "@vipran/aksharas",
"version": "0.4.0",
"description": "Aksharas is an utility for analysing akṣaras and varṇas in a Devanagari text.",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && parcel build",
"check": "tsc",
"test": "jest",
"watch": "parcel watch",
"preversion": "npm run check && npm run test",
"version": "npm run build && git add dist",
"release": "git push && git push --tags"
},
"author": "Prasanna Venkatesh T S <vipranarayan14@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vipranarayan14/aksharas.git"
},
"keywords": [
"character-counter",
"characters",
"devanagari",
"indic-scripts",
"indic-languages",
"sanskrit",
"sanskrit-language",
"syllabification",
"syllables"
],
"bugs": {
"url": "https://github.com/vipranarayan14/aksharas/issues"
},
"homepage": "https://github.com/vipranarayan14/aksharas#readme",
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"parcel": "^2.7.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}