csat-chart.js 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "csat-chart.js",
3
+ "version": "1.2.0",
4
+ "description": "수능·모의고사 시험지 양식의 그래프를 Canvas 2D로 그리는 라이브러리",
5
+ "license": "MIT",
6
+ "author": "김용현",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/yhk1m/csat-chart.js.git"
10
+ },
11
+ "homepage": "https://yhk1m.github.io/csat-chart.js/",
12
+ "keywords": [
13
+ "chart",
14
+ "canvas",
15
+ "korea",
16
+ "csat",
17
+ "수능",
18
+ "지리",
19
+ "geography",
20
+ "exam"
21
+ ],
22
+ "type": "module",
23
+ "types": "./dist/csat-chart.d.cts",
24
+ "main": "./dist/csat-chart.cjs",
25
+ "module": "./dist/csat-chart.mjs",
26
+ "unpkg": "./dist/csat-chart.umd.min.js",
27
+ "jsdelivr": "./dist/csat-chart.umd.min.js",
28
+ "exports": {
29
+ ".": {
30
+ "import": {
31
+ "types": "./dist/csat-chart.d.mts",
32
+ "default": "./dist/csat-chart.mjs"
33
+ },
34
+ "require": {
35
+ "types": "./dist/csat-chart.d.cts",
36
+ "default": "./dist/csat-chart.cjs"
37
+ }
38
+ },
39
+ "./package.json": "./package.json"
40
+ },
41
+ "files": [
42
+ "dist",
43
+ "README.md",
44
+ "LICENSE",
45
+ "CHANGELOG.md"
46
+ ],
47
+ "sideEffects": false,
48
+ "scripts": {
49
+ "build": "tsup && node scripts/fix-esm-dts-ext.mjs",
50
+ "test": "vitest run",
51
+ "typecheck": "tsc --noEmit",
52
+ "lint": "eslint --no-error-on-unmatched-pattern src test",
53
+ "verify": "npm run typecheck && npm run lint && npm run build && npm run test",
54
+ "prepublishOnly": "npm run verify"
55
+ },
56
+ "devDependencies": {
57
+ "@eslint/js": "^9",
58
+ "@napi-rs/canvas": "1.0.3",
59
+ "@types/node": "^20",
60
+ "eslint": "^9",
61
+ "tsup": "^8",
62
+ "typescript": "^5",
63
+ "typescript-eslint": "^8",
64
+ "vitest": "^4.1.10"
65
+ }
66
+ }