-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "kashida-engine",
"version": "0.1.2",
"description": "An engine to unify array of Arabic strings to the same width using Kashidas",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "rm -rf dist && webpack --config webpack.prod.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^10.2.4",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"main": "./dist/kashida-engine.min.js",
"module": "./dist/kashida-engine.min.mjs",
"types": "./dist/declarations/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"core-js": "^3.17.3"
},
"keywords": [
"kashida",
"poem",
"arabic"
]
}