-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.35 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@howso/amalgam-lang",
"version": "0.0.0",
"type": "module",
"license": "AGPL-3.0-only",
"author": {
"name": "Howso Incorporated"
},
"repository": {
"url": "git+https://github.com/howsoai/amalgam-lang-ts.git"
},
"scripts": {
"prebuild": "rimraf ./lib",
"build": "rollup --config",
"lint": "tsc --noEmit && eslint 'src/**'",
"lint:fix": "eslint --fix 'src/**'",
"test": "jest",
"prepack": "npm run build"
},
"files": [
"LICENSE.txt",
"package.json",
"README.md",
"lib"
],
"main": "lib/index.cjs",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/emscripten": "^1.39.13",
"@types/jest": "^29.5.12",
"@types/node": "^18.14.5",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.12.1",
"rollup-plugin-copy": "^3.5.0",
"semver": "^7.6.3",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vite": "^5.1.6",
"vite-plugin-eslint": "^1.8.1"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": [
"class",
"interface"
],
"format": [
"PascalCase"
]
}
]
},
"ignorePatterns": [
"lib/**",
"src/webassembly/**"
],
"env": {
"browser": true,
"node": true,
"es2020": true
}
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"printWidth": 120
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie > 0"
]
}