-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "aksharamukha",
"version": "2.3.0-32",
"type": "module",
"description": "Aksharamukha in your browser!",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"node": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup",
"download-wheels": "tsx ./src/download-wheels.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paramsiddharth/aksharamukha.js.git"
},
"keywords": [
"aksharamukha",
"language",
"transliteration",
"indic"
],
"author": "Param Siddharth",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/paramsiddharth/aksharamukha.js/issues"
},
"homepage": "https://github.com/paramsiddharth/aksharamukha.js#readme",
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.6.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"axios": "^1.12.2",
"eslint": "^9.36.0",
"fs-extra": "^11.3.2",
"globals": "^16.4.0",
"jsdom": "^27.0.0",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"pyodide": "^0.28.3"
}
}