-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
55
56
57
58
59
60
61
{
"name": "@tsevdos/greek-in-tech",
"version": "1.3.1",
"description": "Learn which words used on modern computing and software engineering, come straight from the greek language/mythology.",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "John Tsevdos <[email protected]> (http://tsevdos.me)",
"homepage": "http://greekintech.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsevdos/greek-in-tech/issues"
},
"scripts": {
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"prerelease": "npm run check",
"release": "npm run build && changeset publish",
"changeset": "npx changeset",
"check": "npm run tsc && npm run lint && npm run prettier && npm run test",
"tsc": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/tsevdos/greek-in-tech"
},
"keywords": [
"greek",
"words",
"tech",
"names",
"list",
"data",
"random"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"jest": "29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
}
}