-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.43 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
52
53
54
{
"name": "split-khmer",
"version": "1.0.1",
"description": "Split Khmer (Cambodian) words",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup --onSuccess \"cpy ./wasm/*.wasm ./dist/ --flat\"",
"build:dev": "tsup --onSuccess \"cpy ./wasm/*.wasm ./dist/ --flat\" --watch",
"dev": "tsup --watch --onSuccess \"cpy ./wasm/*.wasm ./dist/ --flat && node ./dist/index.js\"",
"prepublishOnly": "tsup --onSuccess \"cpy ./wasm/*.wasm ./dist/ --flat\"",
"test": "vitest",
"test:ci": "cross-env CI=true vitest --run",
"create:release": "bumpp"
},
"sideEffects": false,
"author": "Seanghay Yath <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/seanghay/split-khmer/issues"
},
"homepage": "https://github.com/seanghay/split-khmer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/seanghay/split-khmer.git"
},
"keywords": [
"khmer",
"cambodian"
],
"devDependencies": {
"@types/node": "16",
"bumpp": "^8.2.1",
"cpy-cli": "^4.1.0",
"cross-env": "^7.0.3",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
},
"dependencies": {
"magic-string": "^0.26.2"
}
}