-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "@clyde-lang/parser",
"version": "2.5.0",
"description": "Parser for Clyde dialogue language",
"main": "./dist/cjs/index.js",
"types": "./dist/mjs/index.d.ts",
"author": "Vinicius Gerevini <viniciusgerevini@gmail.com>",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist/* && tsc -p tsconfig.json && tsc-esm-fix --target dist/mjs && tsc -p tsconfig-cjs.json && ./configure_dist_modules",
"test": "jest --coverage"
},
"keywords": [],
"devDependencies": {
"@types/jest": "^28.1.1",
"jest": "^28.1.1",
"ts-jest": "^28.0.4",
"tsc-esm-fix": "^2.18.0",
"typescript": "^4.7.3"
},
"module": "./dist/mjs/index.js",
"type": "module",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"default": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {},
"files": ["./dist", "README.md", "CHANGELOG.md"],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}