FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
playfulprogramming/package.json at main · playfulprogramming/playfulprogramming · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
playfulprogramming
/
playfulprogramming
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
106
Star
229
Code
Issues
86
Pull requests
21
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
playfulprogramming
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
188 lines (188 loc) · 6.03 KB
Breadcrumbs
playfulprogramming
/
package.json
Copy path
File metadata and controls
188 lines (188 loc) · 6.03 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"name"
:
"
playfulprogramming-site
"
,
"private"
:
true
,
"description"
:
"
Learning programming from magically majestic words
"
,
"version"
:
"
0.3.0-alpha.1
"
,
"bugs"
: {
"url"
:
"
https://github.com/playfulprogramming/playfulprogramming/issues
"
},
"homepage"
:
"
https://playfulprogramming.com
"
,
"keywords"
: [
"
blog
"
,
"
education
"
,
"
programming
"
],
"type"
:
"
module
"
,
"license"
:
"
MPL-2.0
"
,
"repository"
: {
"type"
:
"
git
"
,
"url"
:
"
git+https://github.com/playfulprogramming/playfulprogramming.git
"
},
"packageManager"
:
"
pnpm@11.4.0+sha512.f0febc7e37552ab485494a914241b338e0b3580b93d54ce31f00933015880863129038a1b4ae4e414a0ee63ac35bf21197e990172c4a68256450b5636310968f
"
,
"engines"
: {
"node"
:
"
24.x
"
},
"imports"
: {
"#components/*"
:
"
./src/components/*
"
,
"#src/*"
:
"
./src/*
"
,
"#types/*"
:
"
./src/types/*
"
,
"#utils/*"
:
"
./src/utils/*
"
},
"scripts"
: {
"debug"
:
"
NODE_OPTIONS='--inspect-brk' astro dev --verbose
"
,
"dev"
:
"
astro dev
"
,
"dev:local"
:
"
astro dev --mode localhost
"
,
"start"
:
"
pnpm dev
"
,
"build"
:
"
astro build
"
,
"build:debug"
:
"
astro build --mode debug
"
,
"build:local"
:
"
astro build --mode localhost
"
,
"preview"
:
"
astro preview
"
,
"paraglide:compile"
:
"
paraglide-js compile --project ./project.inlang --outdir ./src/paraglide --emit-ts-declarations --strategy url globalVariable baseLocale
"
,
"format"
:
"
prettier -w . --cache --plugin-search-dir=.
"
,
"prelint"
:
"
pnpm run paraglide:compile
"
,
"lint"
:
"
eslint
\"
**/*.{js,ts,tsx,jsx,astro}
\"
"
,
"prelint:fix"
:
"
pnpm run paraglide:compile
"
,
"lint:fix"
:
"
eslint --cache --fix
\"
**/*.{js,ts,tsx,jsx,astro}
\"
"
,
"preknip"
:
"
pnpm run paraglide:compile
"
,
"knip"
:
"
knip
"
,
"presearch-index:deploy"
:
"
pnpm run paraglide:compile
"
,
"search-index:deploy"
:
"
node --env-file-if-exists=.env --experimental-strip-types scripts/deploy-search-index.ts
"
,
"hoof:generate"
:
"
openapi-typescript 'https://hoof.playfulprogramming.com/docs/openapi.json' -o src/utils/hoof/schema.d.ts
"
,
"pretsc"
:
"
pnpm run paraglide:compile
"
,
"tsc"
:
"
astro check && tsc --noEmit
"
,
"test"
:
"
pnpm run test:unit && pnpm run test:e2e
"
,
"pretest:unit"
:
"
pnpm run paraglide:compile
"
,
"test:unit"
:
"
vitest
"
,
"pretest:unit:node"
:
"
pnpm run paraglide:compile
"
,
"test:unit:node"
:
"
vitest --project node
"
,
"pretest:unit:ui"
:
"
pnpm run paraglide:compile
"
,
"test:unit:ui"
:
"
vitest --project ui
"
,
"test:e2e"
:
"
pnpm --filter e2e test
"
,
"test:e2e:update-snapshots"
:
"
pnpm --filter e2e test:update-snapshots
"
,
"test:e2e:update"
:
"
pnpm --filter e2e test:update-snapshots
"
,
"pretest:debug"
:
"
pnpm run paraglide:compile
"
,
"test:debug"
:
"
set DEBUG_PRINT_LIMIT=9999999999 && pnpm vitest
"
,
"pretest:stress"
:
"
pnpm run paraglide:compile
"
,
"test:stress"
:
"
./scripts/run-tests-concurrently.sh --run
"
,
"prepare"
:
"
husky
"
},
"devDependencies"
: {
"@astrojs/check"
:
"
^0.9.9
"
,
"@astrojs/node"
:
"
^11.0.0
"
,
"@astrojs/preact"
:
"
^6.0.0
"
,
"@eslint/js"
:
"
^10.0.1
"
,
"@inlang/paraglide-js"
:
"
^2.24.1
"
,
"@lesjoursfr/html-to-epub"
:
"
^6.1.0
"
,
"@octokit/graphql"
:
"
^9.0.3
"
,
"@preact/preset-vite"
:
"
^2.10.5
"
,
"@react-types/shared"
:
"
^3.35.0
"
,
"@shikijs/rehype"
:
"
^4.1.0
"
,
"@shikijs/themes"
:
"
^4.1.0
"
,
"@shikijs/transformers"
:
"
^4.1.0
"
,
"@testing-library/dom"
:
"
^10.4.1
"
,
"@testing-library/jest-dom"
:
"
^6.9.1
"
,
"@testing-library/preact"
:
"
^3.2.3
"
,
"@testing-library/user-event"
:
"
^14.6.0
"
,
"@types/git-branch"
:
"
^2.0.5
"
,
"@types/hast"
:
"
^3.0.4
"
,
"@types/mdast"
:
"
^4.0.3
"
,
"@types/node"
:
"
25.9.1
"
,
"@types/tiny-async-pool"
:
"
^2.0.3
"
,
"@types/unist"
:
"
^3.0.3
"
,
"@vitest/browser-playwright"
:
"
^4.1.7
"
,
"astro"
:
"
^7.0.0
"
,
"astro-eslint-parser"
:
"
^1.4.0
"
,
"astro-icon"
:
"
^1.1.5
"
,
"autoprefixer"
:
"
^10.5.0
"
,
"classnames"
:
"
^2.3.2
"
,
"emoji-regex"
:
"
^10.6.0
"
,
"esbuild"
:
"
^0.28.0
"
,
"eslint"
:
"
^10.4.1
"
,
"eslint-config-preact"
:
"
^2.0.0
"
,
"eslint-plugin-astro"
:
"
^1.7.0
"
,
"eslint-plugin-import"
:
"
^2.32.0
"
,
"feed"
:
"
^5.2.1
"
,
"git-branch"
:
"
^2.0.1
"
,
"globals"
:
"
^17.6.0
"
,
"gray-matter"
:
"
^4.0.3
"
,
"hast-util-from-html"
:
"
^2.0.3
"
,
"hast-util-has-property"
:
"
^3.0.0
"
,
"hast-util-heading-rank"
:
"
^3.0.0
"
,
"hast-util-to-html"
:
"
^9.0.5
"
,
"hast-util-to-string"
:
"
^3.0.1
"
,
"hastscript"
:
"
^9.0.1
"
,
"husky"
:
"
^9.1.7
"
,
"json5"
:
"
^2.2.3
"
,
"junk"
:
"
^4.0.1
"
,
"katex"
:
"
^0.17.0
"
,
"kleur"
:
"
^4.1.5
"
,
"knip"
:
"
^6.32.2
"
,
"lint-staged"
:
"
^17.0.5
"
,
"msw"
:
"
^2.14.6
"
,
"octokit"
:
"
^5.0.5
"
,
"openapi-typescript"
:
"
^7.13.0
"
,
"playwright"
:
"
1.60.0
"
,
"postcss"
:
"
^8.5.15
"
,
"postcss-csso"
:
"
^6.0.1
"
,
"prettier"
:
"
^3.8.3
"
,
"prettier-plugin-astro"
:
"
^0.14.1
"
,
"react"
:
"
npm:@preact/compat@18.3.1
"
,
"react-dom"
:
"
npm:@preact/compat@18.3.1
"
,
"rehype-katex"
:
"
^7.0.1
"
,
"rehype-parse"
:
"
9.0.1
"
,
"rehype-raw"
:
"
^7.0.0
"
,
"rehype-slug-custom-id"
:
"
^2.0.0
"
,
"rehype-stringify"
:
"
^10.0.1
"
,
"rehype-unwrap-images"
:
"
^1.0.0
"
,
"remark-frontmatter"
:
"
^5.0.0
"
,
"remark-gfm"
:
"
^4.0.1
"
,
"remark-math"
:
"
^6.0.0
"
,
"remark-parse"
:
"
^11.0.0
"
,
"remark-rehype"
:
"
^11.1.2
"
,
"sass"
:
"
^1.100.0
"
,
"sharp"
:
"
^0.34.5
"
,
"shiki"
:
"
^4.1.0
"
,
"sitemap"
:
"
^9.0.1
"
,
"symlink-dir"
:
"
^10.0.1
"
,
"terser"
:
"
^5.48.0
"
,
"tiny-async-pool"
:
"
^2.1.0
"
,
"tinypool"
:
"
^2.1.0
"
,
"typescript"
:
"
^6.0.3
"
,
"typescript-eslint"
:
"
^8.60.0
"
,
"unified"
:
"
^11.0.5
"
,
"unist-util-find"
:
"
^3.0.0
"
,
"unist-util-is"
:
"
^6.0.1
"
,
"unist-util-visit"
:
"
^5.1.0
"
,
"vfile"
:
"
^6.0.3
"
,
"vitest"
:
"
^4.1.7
"
},
"lint-staged"
: {
"*.{js,ts,tsx,astro}"
:
"
eslint --cache --fix
"
,
"*.{js,ts,tsx,astro,jsx}"
:
"
prettier --write
"
},
"dependencies"
: {
"@babel/runtime"
:
"
^7.29.7
"
,
"@internationalized/date"
:
"
^3.12.2
"
,
"@nanostores/preact"
:
"
^1.1.0
"
,
"@plausible-analytics/tracker"
:
"
^0.4.5
"
,
"@preact/signals"
:
"
^2.9.1
"
,
"@react-aria/utils"
:
"
^3.34.1
"
,
"@tanstack/react-query"
:
"
^5.100.14
"
,
"@webcontainer/api"
:
"
^1.6.4
"
,
"fflate"
:
"
^0.8.3
"
,
"medium-zoom"
:
"
^1.0.8
"
,
"nanostores"
:
"
^1.3.0
"
,
"openapi-fetch"
:
"
^0.17.0
"
,
"preact"
:
"
10.29.2
"
,
"react-aria"
:
"
^3.49.0
"
,
"react-aria-components"
:
"
^1.18.0
"
,
"react-stately"
:
"
^3.47.0
"
,
"typesense"
:
"
^3.0.6
"
,
"uuid"
:
"
^14.0.0
"
},
"msw"
: {
"workerDirectory"
: [
"
public
"
]
}
}
Back
|
FazBrowse Home
|
New Git URL