-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "@learn-tamil/script",
"version": "0.4.0",
"main": "./lib/index.js",
"module": "./lib/index.js",
"type": "module",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/learn-tamil/tamil-script.git"
},
"bugs": {
"url": "https://github.com/learn-tamil/tamil-script/issues"
},
"homepage": "https://github.com/learn-tamil/tamil-script#readme",
"author": "Rathes Sachchithananthan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"scripts": {
"build": "rm -rf ./lib && esbuild ./src/index.ts --bundle --outfile=./lib/index.js --format=esm",
"format": "prettier --write './src/**/*.{js,json,md,css}'",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prepublish": "yarn build && yarn types",
"test": "jest",
"test:watch": "jest --watch",
"types": "tsc --project tsconfig.json --emitDeclarationOnly"
},
"files": [
"lib"
],
"packageManager": "[email protected]"
}